Conversation
There was a problem hiding this comment.
Code Review
This pull request replaces an encrypted vault password with a dummy plaintext value for the CI environment. This is a good practice to avoid managing real secrets in CI. However, I've suggested using a more complex string for the dummy password to mitigate potential risks if CI resources are accidentally exposed.
| bP5dzV3wpwHepeZDMPpUIhFXrp/6VVefQU5HwjJzaCiUooCAVCCV8cBsXqvNAhvNO1y41 | ||
| cUVxFBYyCJ4JGIw1qMBPOSUnhY148xPTm9+4pD6HbR1K9NCbU7GoahFDz2jtRYjFRM401 | ||
| YuwR7K8GRILFJ4zEbtlmwj4gMUEZSo0HE0BZPUWSZpmFs1wX5LAKenMJs0Ctpg= | ||
| vault_pw: "none" |
There was a problem hiding this comment.
Using a common string like 'none' as a dummy password can be a security risk, even in a CI environment. If any resources created during the CI run are inadvertently exposed, they would be protected by a very weak and guessable password. It is a better practice to use a more complex, non-guessable string to mitigate this risk, even if it's not treated as a true secret.
vault_pw: "dummy-ci-password-not-a-secret"
No description provided.